home *** CD-ROM | disk | FTP | other *** search
/ Young Minds / Young Minds Interactive CD-ROM.ISO / corewars / test.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-02-14  |  104 b   |  11 lines

  1. main()
  2. {
  3.     int    i, j;
  4.  
  5.     for (i = 0; i <8000;)
  6.     {
  7.         for (j = 0; j < 10; j++, i++)
  8.             printf("%d", j);
  9.     }
  10. }
  11.